home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / misc / moonbas2 / boolean.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-08-15  |  134 b   |  12 lines

  1. #ifndef _BOOLEAN_H
  2. #define _BOOLEAN_H
  3.  
  4. typedef enum
  5. {
  6.    false = 0,
  7.    true  = 1
  8. }
  9. boolean;
  10.  
  11. #endif  // #ifndef _BOOLEAN_H
  12.